home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / rsync.postinst < prev    next >
Text File  |  2009-06-25  |  638b  |  32 lines

  1. #!/bin/sh -e
  2.  
  3. action="$1"
  4. oldversion="$2"
  5.  
  6. if [ "$action" != configure ]
  7.   then
  8.   exit 0
  9. fi
  10.  
  11.  
  12. if [ -x /etc/init.d/rsync ]; then
  13.     if dpkg --compare-versions "$2" lt "3.0.5-1ubuntu2"; then
  14.         update-rc.d -f rsync remove
  15.     fi
  16.  
  17.         update-rc.d rsync start 50 2 3 4 5 . stop 20 1 . >/dev/null
  18.         if [ -x /usr/sbin/invoke-rc.d ]; then
  19.                 invoke-rc.d rsync restart
  20.         else
  21.                 /etc/init.d/rsync restart
  22.         fi
  23. fi
  24.  
  25.  
  26. # Remove shutdown and reboot links; this init script does not need them.
  27. if dpkg --compare-versions "$2" lt "2.6.8-2ubuntu2"; then
  28.     rm -f /etc/rc0.d/K20rsync /etc/rc6.d/K20rsync
  29. fi
  30.  
  31. exit 0
  32.